+Wed Sep 23 06:09:19 1998 Tim Janik <timj@gtk.org>
+
+ * configure.in: update to Gtk+ version 1.1.3, binary age 1,
+ interface age 1.
+
+ * gtk/gtkobject.c
+ (gtk_object_ref):
+ (gtk_object_unref): check for ->ref_count to be greater than 0 (the
+ existing code was buggy in letting ->ref_count==0 pass through and
+ then failing the living_objs_ht assertion).
+
+ * gtk/gtkclist.c (draw_row): fix chopping bug for right justified
+ pixtext fields (Roman Pozlevich <roma@botik.ru>).
+
Mon Sep 21 23:53:18 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* Released GTK+ 1.1.2
+Wed Sep 23 06:09:19 1998 Tim Janik <timj@gtk.org>
+
+ * configure.in: update to Gtk+ version 1.1.3, binary age 1,
+ interface age 1.
+
+ * gtk/gtkobject.c
+ (gtk_object_ref):
+ (gtk_object_unref): check for ->ref_count to be greater than 0 (the
+ existing code was buggy in letting ->ref_count==0 pass through and
+ then failing the living_objs_ht assertion).
+
+ * gtk/gtkclist.c (draw_row): fix chopping bug for right justified
+ pixtext fields (Roman Pozlevich <roma@botik.ru>).
+
Mon Sep 21 23:53:18 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* Released GTK+ 1.1.2
+Wed Sep 23 06:09:19 1998 Tim Janik <timj@gtk.org>
+
+ * configure.in: update to Gtk+ version 1.1.3, binary age 1,
+ interface age 1.
+
+ * gtk/gtkobject.c
+ (gtk_object_ref):
+ (gtk_object_unref): check for ->ref_count to be greater than 0 (the
+ existing code was buggy in letting ->ref_count==0 pass through and
+ then failing the living_objs_ht assertion).
+
+ * gtk/gtkclist.c (draw_row): fix chopping bug for right justified
+ pixtext fields (Roman Pozlevich <roma@botik.ru>).
+
Mon Sep 21 23:53:18 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* Released GTK+ 1.1.2
+Wed Sep 23 06:09:19 1998 Tim Janik <timj@gtk.org>
+
+ * configure.in: update to Gtk+ version 1.1.3, binary age 1,
+ interface age 1.
+
+ * gtk/gtkobject.c
+ (gtk_object_ref):
+ (gtk_object_unref): check for ->ref_count to be greater than 0 (the
+ existing code was buggy in letting ->ref_count==0 pass through and
+ then failing the living_objs_ht assertion).
+
+ * gtk/gtkclist.c (draw_row): fix chopping bug for right justified
+ pixtext fields (Roman Pozlevich <roma@botik.ru>).
+
Mon Sep 21 23:53:18 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* Released GTK+ 1.1.2
+Wed Sep 23 06:09:19 1998 Tim Janik <timj@gtk.org>
+
+ * configure.in: update to Gtk+ version 1.1.3, binary age 1,
+ interface age 1.
+
+ * gtk/gtkobject.c
+ (gtk_object_ref):
+ (gtk_object_unref): check for ->ref_count to be greater than 0 (the
+ existing code was buggy in letting ->ref_count==0 pass through and
+ then failing the living_objs_ht assertion).
+
+ * gtk/gtkclist.c (draw_row): fix chopping bug for right justified
+ pixtext fields (Roman Pozlevich <roma@botik.ru>).
+
Mon Sep 21 23:53:18 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* Released GTK+ 1.1.2
+Wed Sep 23 06:09:19 1998 Tim Janik <timj@gtk.org>
+
+ * configure.in: update to Gtk+ version 1.1.3, binary age 1,
+ interface age 1.
+
+ * gtk/gtkobject.c
+ (gtk_object_ref):
+ (gtk_object_unref): check for ->ref_count to be greater than 0 (the
+ existing code was buggy in letting ->ref_count==0 pass through and
+ then failing the living_objs_ht assertion).
+
+ * gtk/gtkclist.c (draw_row): fix chopping bug for right justified
+ pixtext fields (Roman Pozlevich <roma@botik.ru>).
+
Mon Sep 21 23:53:18 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* Released GTK+ 1.1.2
+Wed Sep 23 06:09:19 1998 Tim Janik <timj@gtk.org>
+
+ * configure.in: update to Gtk+ version 1.1.3, binary age 1,
+ interface age 1.
+
+ * gtk/gtkobject.c
+ (gtk_object_ref):
+ (gtk_object_unref): check for ->ref_count to be greater than 0 (the
+ existing code was buggy in letting ->ref_count==0 pass through and
+ then failing the living_objs_ht assertion).
+
+ * gtk/gtkclist.c (draw_row): fix chopping bug for right justified
+ pixtext fields (Roman Pozlevich <roma@botik.ru>).
+
Mon Sep 21 23:53:18 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
* Released GTK+ 1.1.2
#
GTK_MAJOR_VERSION=1
GTK_MINOR_VERSION=1
-GTK_MICRO_VERSION=2
-GTK_INTERFACE_AGE=0
-GTK_BINARY_AGE=0
+GTK_MICRO_VERSION=3
+GTK_INTERFACE_AGE=1
+GTK_BINARY_AGE=1
GTK_VERSION=$GTK_MAJOR_VERSION.$GTK_MINOR_VERSION.$GTK_MICRO_VERSION
AC_SUBST(GTK_MAJOR_VERSION)
AC_SUBST(GTK_MINOR_VERSION)
gdk_window_get_size (GTK_CELL_PIXTEXT (clist_row->cell[i])->pixmap, &width, &height);
pixmap_width = width;
width += GTK_CELL_PIXTEXT (clist_row->cell[i])->spacing;
- width = gdk_string_width (GTK_WIDGET (clist)->style->font,
- GTK_CELL_PIXTEXT (clist_row->cell[i])->text);
+ width += gdk_string_width (GTK_WIDGET (clist)->style->font,
+ GTK_CELL_PIXTEXT (clist_row->cell[i])->text);
break;
case GTK_CELL_WIDGET:
{
g_return_if_fail (object != NULL);
g_return_if_fail (GTK_IS_OBJECT (object));
+ g_return_if_fail (object->ref_count > 0);
object->ref_count += 1;
}
{
g_return_if_fail (object != NULL);
g_return_if_fail (GTK_IS_OBJECT (object));
+ g_return_if_fail (object->ref_count > 0);
if (object->ref_count == 1)
- gtk_object_destroy (object);
+ {
+ gtk_object_destroy (object);
- if (object->ref_count > 0)
- object->ref_count -= 1;
+ g_return_if_fail (object->ref_count > 0);
+ }
+
+ object->ref_count -= 1;
if (object->ref_count == 0)
{